/-app
/-app/layout
Application.html
TestPage.html
/-app/tests
TestCase.ts
TestPage.ts
Application.ts
/-boot
/-imports
/-storage
/-tests
/-typings
stringUtils.ts
teapo.html
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<title>TEAPO v0.5</title>
5
 
6
<style>###base.css###</style>
7
<style>###boot/boot.css###</style> 
8
 
9
</head>
10
<body>
11
 
12
<script>###boot/early-0.js###</script>
13
<script>###imports/knockout/knockout-3.0.0.js###</script>
14
<script>###boot/early-1-with-knockout.js###</script>
15
 
16
<!-- Knockout.js templates --->
17
<script id=Application type="text/html">###app/layout/Application.html###</script>
18
<script id=TestPage type="text/html">###app/layout/TestPage.html###</script>
19
 
20
<script>
21
 
22
(function(teapo) {
23
 
24
###app/Application.ts:build###
25
 
26
var app = new teapo.Application();
27
 
28
})(teapo);
29
</script>
30
</body>
31
</html>